AuthChallengeResponse

data class AuthChallengeResponse(response: String, username: String?, password: String?)

Response to an AuthChallenge.

Constructors

AuthChallengeResponse
Link copied to clipboard
fun AuthChallengeResponse(response: String, username: String? = null, password: String? = null)

Properties

password
Link copied to clipboard
val password: String? = null
The password to provide, possibly empty.
response
Link copied to clipboard
val response: String
The decision on what to do in response to the authorization challenge.
username
Link copied to clipboard
val username: String? = null
The username to provide, possibly empty.

Sources

jvm source
Link copied to clipboard